home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat1 / max.1 < prev    next >
Text File  |  1999-09-16  |  730b  |  67 lines

  1.  
  2.  
  3.  
  4. Maximum(G)                     Scilab Function                     Maximum(G)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   max - maximum
  13.  
  14. CALLING SEQUENCE
  15.   [m [,k]]=max(V)
  16.   [m [,k]]=maxi(V)
  17.  
  18. PARAMETERS
  19.  
  20.   V         : real vector or matrix or list.
  21.  
  22. DESCRIPTION
  23.   For V a vector, matrix or list, max(V) is the largest element V.
  24.  
  25.   For matrices, [m,k]=max(V) gives in addition the index of the maximum.
  26.  
  27.   For example:
  28.  
  29.   [m,[k]]=max([V1,V2,...,Vn])
  30.   returns the vector m:
  31.   m(i)=max([V1(i),....,Vn(1)])
  32.   and the vector k contains for each m(i) the number of the first Vj(i)
  33.   achieving the maximum.
  34.   [m [,k]]=max(list(v1,...,vn))
  35.   is an equivalent syntax.
  36.  
  37.   Note that max and maxi are equivalent.
  38.  
  39. SEE ALSO
  40.   sort, find, mini
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.